A dockerized version of andrewning/sortphotos including all needed dependencies.
python3=3.11.12-r1
py3-pip=23.1.2-r0
perl=5.36.2-r1
exiftool=12.60-r0
docker run --rm -it ghcr.io/matthiasbalke/sortphotos:0.1.0 <sortphotos arguments here>
To sort all pictures form /Users/Me/MessyDirectory
into /Users/Me/Pictures
, mount source and target directory into container and run with desired sortphotos
arguments.
docker run --rm -it ghcr.io/matthiasbalke/sortphotos:0.1.0 \
--mount type=bind,src=/Users/Me/MessyDirectory,dst=/source \
--mount type=bind,src=/Users/Me/Pictures,dst=/target \
--recursive --test /source /target
# build the image locally (tag: sortphotos:local)
./dev-build.sh